home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '90 / Other Stuff / Demos ƒ / Demo AppMaker / Demo AppMaker™ / Demo AppMaker™.rsrc / TmPT_107_ModelessDialog < prev    next >
Encoding:
Text File  |  1990-03-23  |  838 b   |  34 lines

  1. { %filename% -- modeless dialog }
  2. { Created %date% %time% by AppMaker }
  3.  
  4. {    This module overrides the AppMaker-generated code in z%dlogname%.%        %}
  5. {    It provides a place for you to add your own code and still be able to    }
  6. {    generate code for new changes to the user interface.  This module will    }
  7. {    not be regenerated by AppMaker unless you delete it.  Its superclass,    }
  8. {    z%dlogname%, may be regenerated to handle user interface changes%        %}
  9. {    without losing your hand-coded changes to this module.                    }
  10.  
  11. Unit %unitname%;
  12. Interface
  13.  
  14. Uses
  15.     TCL,
  16.     AMCL,
  17.     z%AppName%Intf,
  18.     %AppName%Intf;
  19.  
  20. {----------}
  21. Implementation
  22.  
  23. %for each item gen Make%
  24. {----------}
  25. Procedure C%dlogname%.DoCommand (theCommand: longint);
  26. Begin
  27.     case theCommand of
  28.         0:    ;
  29.         otherwise
  30.             inherited DoCommand (theCommand);
  31.     end; {case}
  32. End; {DoCommand}
  33.     
  34. End. {%unitname%}